home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / jazlib.arc / STI.ASM < prev    next >
Assembly Source File  |  1988-12-18  |  129b  |  11 lines

  1.     assume cs:_text
  2. _text    segment public byte 'code'
  3.     public _sti
  4.  
  5. _sti    proc near
  6.     sti
  7.     ret
  8. _sti        endp
  9. _text    ends
  10. end
  11.